Remove testharness reference from Vibration manual tests - The testharness will result in 'Harness status: TIMEOUT' error info though the tests pass - Remove html xmlns attribute which is optional in HTML5 - Remove commentted lines too 
diff --git a/vibration/api-is-present.html b/vibration/api-is-present.html index be802c2..8dde96c 100644 --- a/vibration/api-is-present.html +++ b/vibration/api-is-present.html 
@@ -1,5 +1,5 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test that the vibrate() method is present (with or without vendor prefix)</title> 
diff --git a/vibration/cancel-with-0-manual.html b/vibration/cancel-with-0-manual.html index 7b9ceaa..6890d57 100644 --- a/vibration/cancel-with-0-manual.html +++ b/vibration/cancel-with-0-manual.html 
@@ -1,5 +1,5 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: cancel ongoing vibrate() with 0</title> @@ -7,11 +7,6 @@  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, interact'/>  <meta name='assert' content='If pattern is 0, cancel the pre-existing instance of the processing vibration patterns algorithm'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body>  <h1>Description</h1> @@ -21,9 +16,6 @@  the test has failed.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) { 
diff --git "a/vibration/cancel-with-\133\135-manual.html" "b/vibration/cancel-with-\133\135-manual.html" index 1b3106e..9d4be2b 100644 --- "a/vibration/cancel-with-\133\135-manual.html" +++ "b/vibration/cancel-with-\133\135-manual.html" 
@@ -1,5 +1,5 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: cancel ongoing vibrate() with []</title> @@ -7,11 +7,6 @@  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, interact'/>  <meta name='assert' content='If pattern is an empty list, cancel the pre-existing instance of the processing vibration patterns algorithm'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body>  <h1>Description</h1> @@ -21,9 +16,6 @@  the test has failed.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) { 
diff --git a/vibration/cancel-with-new-manual.html b/vibration/cancel-with-new-manual.html index 9c8044e..1cd9daf 100644 --- a/vibration/cancel-with-new-manual.html +++ b/vibration/cancel-with-new-manual.html 
@@ -1,5 +1,5 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: cancel ongoing vibrate() with a new call to vibrate</title> @@ -7,11 +7,6 @@  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, interact'/>  <meta name='assert' content='Cancel the pre-existing instance of the processing vibration patterns algorithm, if any.'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body>  <h1>Description</h1> @@ -22,9 +17,6 @@  failed.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) { 
diff --git a/vibration/pattern-array-extra-manual.html b/vibration/pattern-array-extra-manual.html index 61dbabd..3f5ccf3 100644 --- a/vibration/pattern-array-extra-manual.html +++ b/vibration/pattern-array-extra-manual.html 
@@ -1,17 +1,12 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test a pattern array parameter to vibrate() with an extra (even) item</title>  <link rel='author' title='Robin Berjon' href='mailto:robin@berjon.com'/>  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/> - <meta name='flags' content=dom, interact'/> + <meta name='flags' content='dom, interact'/>  <meta name='assert' content='If the length of pattern is even, then remove the last entry in pattern.'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body>  <h1>Description</h1> @@ -20,9 +15,6 @@  by one second intervals.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) { 
diff --git a/vibration/pattern-array-manual.html b/vibration/pattern-array-manual.html index d01b065..43674bf 100644 --- a/vibration/pattern-array-manual.html +++ b/vibration/pattern-array-manual.html 
@@ -1,16 +1,11 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test a pattern array parameter to vibrate()</title>  <link rel='author' title='Robin Berjon' href='mailto:robin@berjon.com'/>  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/> - <meta name='flags' content=dom, interact'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/> + <meta name='flags' content='dom, interact'/>  </head>  <body>  <h1>Description</h1> @@ -19,9 +14,6 @@  by one second intervals.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) { 
diff --git a/vibration/silent-ignore.html b/vibration/silent-ignore.html index 508cafa..81bb152 100644 --- a/vibration/silent-ignore.html +++ b/vibration/silent-ignore.html 
@@ -1,5 +1,5 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test that calls to vibrate() are silently ignored when the device cannot vibrate</title> @@ -7,10 +7,6 @@  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, no-vibrator'/>  <meta name='assert' content='If the device does not provide a vibration mechanism, or it is disabled, the user agent must silently ignore any invocations of the vibrate() method.'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - -->  <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body> 
diff --git a/vibration/simple-array-manual.html b/vibration/simple-array-manual.html index 6d44104..e466f4d 100644 --- a/vibration/simple-array-manual.html +++ b/vibration/simple-array-manual.html 
@@ -1,15 +1,11 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test a simple array parameter to vibrate()</title>  <link rel='author' title='Robin Berjon' href='mailto:robin@berjon.com'/>  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, interact'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - -->  <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body> 
diff --git a/vibration/simple-scalar-manual.html b/vibration/simple-scalar-manual.html index ee47daa..0c7637b 100644 --- a/vibration/simple-scalar-manual.html +++ b/vibration/simple-scalar-manual.html 
@@ -1,16 +1,11 @@  <!DOCTYPE html> -<html xmlns='http://www.w3.org/1999/xhtml' lang='en'> +<html>  <head>  <meta charset='utf-8'/>  <title>Vibration API: test a simple scalar parameter to vibrate()</title>  <link rel='author' title='Robin Berjon' href='mailto:robin@berjon.com'/>  <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>  <meta name='flags' content='dom, interact'/> - <!-- - When you review this test, please add - <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/> - --> - <link rel='stylesheet' href='/resources/testharness.css' media='all'/>  </head>  <body>  <h1>Description</h1> @@ -18,9 +13,6 @@  After hitting the button below, your device must vibrate continuously for about two seconds, once.  </p>  <button id='vib'>Vibrate!</button> - <div id='log'></div> - <script src='/resources/testharness.js'></script> - <script src='/resources/testharnessreport.js'></script>  <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>  <script>  if (undefined !== navigator.vibrate) {